home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 62 / Quick PC 62.iso / I386 / NETEJXMP.IN_ / netejxmp.inf
Encoding:
Windows Setup INFormation  |  1999-10-19  |  3.5 KB  |  118 lines

  1. ; IBMEXMP.INF
  2. ;
  3. ; IBM EtherJet PC Card and compatible Ethernet adapter.
  4. ;
  5. ; Copyright 1998, Microsoft
  6. ; Copyright 1998, IBM
  7.  
  8. [Version]
  9. Signature   = "$Windows NT$"
  10. Class       = Net
  11. ClassGUID   = {4d36e972-e325-11ce-bfc1-08002be10318}
  12. Provider    = %MSFT%
  13. LayoutFile  = layout.inf
  14. DriverVer=10/19/1999,3.14.0.0
  15.  
  16. [Manufacturer]
  17. %IBM%=IBM
  18.  
  19. [ControlFlags]
  20. ExcludeFromSelect     = PCMCIA\IBM-EtherJet_PC_Card-3FE2
  21.  
  22. [IBM]
  23. %ETHERJET.DeviceDesc% = ETHERJET.ndi, PCMCIA\IBM-EtherJet_PC_Card-3FE2
  24.  
  25. ;-------------------------------------------------------------------------------
  26. ; IBM EtherJet ISA Adapter (NT5)
  27. ;
  28. [ETHERJET.ndi]
  29. AddReg          = ETHERJET.reg, ETHERJET.params
  30. Characteristics = 0x84 ;  NCF_HAS_UI | NCF_PHYSICAL
  31. BusType         = 8
  32. CopyFiles       = IBMEXMP.ndis4.CopyFiles
  33.  
  34. [ETHERJET.ndi.Services]
  35. AddService = IBMEXMP, 2, IBMEXMP.Service, common.EventLog
  36.  
  37. [ETHERJET.ndi.LogConfigOverride]
  38. LogConfig = EJ.LogConfigOverride
  39.  
  40. [EJ.LogConfigOverride]
  41. IRQConfig    = 3,4,5,7,9,10,11,14,15
  42. IOConfig     = 10@200-360%FFF0(FFFF::)
  43. PcCardConfig = 41(W)
  44.  
  45. ;-------------------------------------------------------------------------------
  46. ; IBMEXMP base section
  47. ;
  48. [ETHERJET.reg]
  49. HKR, Ndi,                        Service,    0, "IBMEXMP"
  50. HKR, Ndi\Interfaces,             UpperRange, 0, "ndis5"
  51. HKR, Ndi\Interfaces,             LowerRange, 0, "ethernet"
  52. HKR, ,                           MediaType,  0, "1"         ; 2=TokenRing, 1=Ethernet
  53. ;HKR,,AdapterType,,1
  54.  
  55. [ETHERJET.params]
  56. ; Duplex selection
  57. HKR, Ndi\params\DuplexMode,      ParamDesc,  0, %DuplexMode% 
  58. HKR, Ndi\params\DuplexMode,      type,       0, "enum"
  59. HKR, Ndi\params\DuplexMode,      default,    0, "0"
  60. HKR, Ndi\params\DuplexMode\enum, 0,          0, %AutoNegotiate%
  61. HKR, Ndi\params\DuplexMode\enum, 1,          0, %HalfDuplex%
  62. HKR, Ndi\params\DuplexMode\enum, 2,          0, %FullDuplex%
  63.  
  64. ;
  65. ; NetAddress - Local Administrator Address
  66. ;
  67. HKR, NDI\params\NetworkAddress,  ParamDesc,  0, %NetworkAddress% 
  68. HKR, NDI\params\NetworkAddress,  type,       0, "edit"
  69. HKR, NDI\params\NetworkAddress,  LimitText,  0, "12"
  70. HKR, NDI\params\NetworkAddress,  UpperCase,  0, "1"
  71. HKR, NDI\params\NetworkAddress,  default,    0, ""
  72. HKR, NDI\params\NetworkAddress,  optional,   0, "1"
  73.  
  74. ;----------------------------------------------------------------------------
  75. ; IBMEXMP NT specific
  76. ;
  77. [IBMEXMP.ndis4.CopyFiles]
  78. IBMEXMP.sys,,,2
  79.  
  80. [IBMEXMP.Service]
  81. DisplayName     = %ETHERJET.Service.DispName%
  82. ServiceType     = 1 ;%SERVICE_KERNEL_DRIVER%
  83. StartType       = 3 ;%SERVICE_AUTO_START%
  84. ErrorControl    = 1 ;%SERVICE_ERROR_NORMAL%
  85. ServiceBinary   = %12%\IBMEXMP.sys
  86. LoadOrderGroup  = NDIS
  87.  
  88. [common.EventLog]
  89. AddReg = common.AddEventLog.reg
  90.  
  91. [common.AddEventLog.reg]
  92. HKR, , EventMessageFile, 0x00020000,"%%SystemRoot%%\System32\netevent.dll,%%SystemRoot%%\System32\drivers\ibmexmp.sys"
  93. HKR, , TypesSupported,   0x00010001, 7
  94.  
  95. ;-------------------------------------------------------------------------------
  96. ; Destination Directories
  97. ;
  98. [DestinationDirs]
  99. IBMEXMP.ndis4.CopyFiles    =12 ; LDID_SYS
  100.  
  101.  
  102. ;-------------------------------------------------------------------------------
  103. ; Localizable Strings
  104. ;
  105. [strings]
  106. MSFT            = "Microsoft"
  107. IBM             = "IBM"
  108.  
  109. DuplexMode      = "DuplexMode"
  110. AutoNegotiate   = "Auto Negotiate"
  111. HalfDuplex      = "Half Duplex"
  112. FullDuplex      = "Full Duplex"
  113. NetworkAddress  = "NetworkAddress"
  114.  
  115. ETHERJET.DeviceDesc       = "IBM EtherJet PC Card"
  116. ETHERJET.Service.DispName = "IBM EtherJet PC Card NT Driver"
  117.  
  118.